From 18a92992a0b2129635e13c3315423af546c4b6e3 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 18 Jul 2014 19:39:11 -0400 Subject: [PATCH] GtkProgressBar: Set orientable style classes initially This was an omission, horizontal/vertical would only be set when the orientation is changed. --- gtk/gtkprogressbar.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtkprogressbar.c b/gtk/gtkprogressbar.c index 9291982d34..65399214a6 100644 --- a/gtk/gtkprogressbar.c +++ b/gtk/gtkprogressbar.c @@ -322,6 +322,7 @@ gtk_progress_bar_init (GtkProgressBar *pbar) priv->fraction = 0.0; gtk_widget_set_has_window (GTK_WIDGET (pbar), FALSE); + _gtk_orientable_set_style_classes (GTK_ORIENTABLE (pbar)); } static void -- 2.30.2